home *** CD-ROM | disk | FTP | other *** search
-
- SCREEN 13
- col = 0
- FOR y = 0 TO 15
- FOR x = 0 TO 15
- DRAW "BM" + STR$(x * 20) + "," + STR$(y * 12) ' Position cursor
- DRAW "C" + STR$(col) ' Set the color
- DRAW "R20 D12 L20 U12 BF4" ' Draw the box
- DRAW "P" + STR$(col) + "," + STR$(col) ' Fill the box
- col = col + 1 ' Increment color
- NEXT
- NEXT
-
- DO
- LOOP UNTIL INKEY$ <> ""
-
-